HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-26-0-120 6.17.0-1009-aws #9~24.04.2-Ubuntu SMP Fri Mar 6 23:50:29 UTC 2026 x86_64
User: ubuntu (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/dashboard.orbiwheels.com/resources/views/emails/contact.blade.php
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>New Contact Message</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        .container {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            border: 1px solid #eee;
            border-radius: 8px;
            background-color: #f9f9f9;
        }
        h2 {
            color: #2c3e50;
        }
        p {
            margin: 5px 0;
        }
        .label {
            font-weight: bold;
        }
    </style>
</head>
<body>
    <div class="container">
        <h2>New Contact Message</h2>

        <p><span class="label">Full Name:</span> {{ $contact->name }}</p>
        <p><span class="label">Email:</span> {{ $contact->email }}</p>
        <p><span class="label">Phone:</span> {{ $contact->phone ?? '-' }}</p>
        <p><span class="label">Subject:</span> {{ $contact->subject }}</p>
        <p><span class="label">Message:</span></p>
        <p>{{ $contact->message }}</p>

        <hr>
        <p>This message was sent from your website contact form.</p>
    </div>
</body>
</html>